home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CICA 1995 August
/
CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso
/
disc2
/
programr
/
vbasic
/
receipt.exe
/
VENDLG.FRM
< prev
Wrap
Text File
|
1993-07-22
|
8KB
|
256 lines
VERSION 2.00
Begin Form Form5
Caption = "Vendor Data"
ClientHeight = 4005
ClientLeft = 1035
ClientTop = 1515
ClientWidth = 8175
Height = 4410
Left = 975
LinkMode = 1 'Source
LinkTopic = "Form5"
ScaleHeight = 267
ScaleMode = 3 'Pixel
ScaleWidth = 545
Top = 1170
Width = 8295
Begin CommandButton Command2
Caption = "Cancel"
Height = 375
Left = 4560
TabIndex = 1
Top = 3360
Width = 2295
End
Begin CommandButton Command1
Caption = "OK"
Height = 375
Left = 1200
TabIndex = 0
Top = 3360
Width = 2295
End
Begin VBedit BEdit6
CellHeight = 32
CellWidth = 22
CharSet = 16404
CombBaseLine = 24.333
CombEndHeight = 8
CombEndMarker = 0 'False
CombHeight = 4
FontBold = 0 'False
FontItalic = 0 'False
FontName = "Arial"
FontSize = 18
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 495
InflateBottom = 12
InflateLeft = 12
InflateRight = 12
InflateTop = 16
Left = 5880
TabIndex = 13
Text = " / /"
Top = 2640
Version = 268435458
Width = 2055
End
Begin VBedit BEdit5
CellHeight = 32
CellWidth = 22
CharSet = 16404
CombBaseLine = 24.333
CombEndHeight = 8
CombEndMarker = 0 'False
CombHeight = 4
FontBold = 0 'False
FontItalic = 0 'False
FontName = "Arial"
FontSize = 18
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 495
InflateBottom = 12
InflateLeft = 12
InflateRight = 12
InflateTop = 16
Left = 1920
TabIndex = 12
Text = " / /"
Top = 2640
Version = 268435458
Width = 2055
End
Begin VBedit BEdit4
CellHeight = 32
CellWidth = 22
CombBaseLine = 24.333
CombEndHeight = 8
CombEndMarker = 0 'False
CombHeight = 4
FontBold = 0 'False
FontItalic = 0 'False
FontName = "Arial"
FontSize = 18
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 495
InflateBottom = 12
InflateLeft = 12
InflateRight = 12
InflateTop = 16
Left = 1920
TabIndex = 11
Top = 2040
Version = 268435458
Width = 6015
End
Begin VBedit BEdit3
CellHeight = 32
CellWidth = 22
CombBaseLine = 24.333
CombEndHeight = 8
CombEndMarker = 0 'False
CombHeight = 4
FontBold = 0 'False
FontItalic = 0 'False
FontName = "Arial"
FontSize = 18
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 495
InflateBottom = 12
InflateLeft = 12
InflateRight = 12
InflateTop = 16
Left = 1920
TabIndex = 10
Top = 1440
Version = 268435458
Width = 6015
End
Begin VBedit BEdit2
CellHeight = 32
CellWidth = 22
CombBaseLine = 24.333
CombEndHeight = 8
CombEndMarker = 0 'False
CombHeight = 4
FontBold = 0 'False
FontItalic = 0 'False
FontName = "Arial"
FontSize = 18
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 495
InflateBottom = 12
InflateLeft = 12
InflateRight = 12
InflateTop = 16
Left = 1920
TabIndex = 9
Top = 840
Version = 268435458
Width = 6015
End
Begin VBedit BEdit1
CellHeight = 32
CellWidth = 22
CombBaseLine = 24.333
CombEndHeight = 8
CombEndMarker = 0 'False
CombHeight = 4
FontBold = 0 'False
FontItalic = 0 'False
FontName = "Arial"
FontSize = 18
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 495
InflateBottom = 12
InflateLeft = 12
InflateRight = 12
InflateTop = 16
Left = 1920
TabIndex = 8
Top = 240
Version = 268435458
Width = 6015
End
Begin Label Label6
Caption = "Est. Arrival Date:"
Height = 255
Left = 4200
TabIndex = 7
Top = 2760
Width = 1575
End
Begin Label Label5
Caption = "Date Ordered:"
Height = 255
Left = 240
TabIndex = 6
Top = 2760
Width = 1335
End
Begin Label Label4
Caption = "Vendor Contact:"
Height = 255
Left = 240
TabIndex = 5
Top = 2160
Width = 1455
End
Begin Label Label3
Caption = "Called In By:"
Height = 255
Left = 240
TabIndex = 4
Top = 1560
Width = 1215
End
Begin Label Label2
Caption = "Vendor Number:"
Height = 255
Left = 240
TabIndex = 3
Top = 960
Width = 1455
End
Begin Label Label1
Caption = "Vendor Name:"
Height = 255
Left = 240
TabIndex = 2
Top = 360
Width = 1335
End
End
Sub Command1_Click ()
Form1.VenName.Text = LTrim$(BEdit1.Text)
Form1.VenNo.Text = LTrim$(BEdit2.Text)
Form1.CalledIn.Text = LTrim$(BEdit3.Text)
Form1.VenContact.Text = LTrim$(BEdit4.Text)
Form1.OrderDate.Text = BEdit5.Text
Form1.EstDate.Text = BEdit6.Text
Unload Form5
End Sub
Sub Command2_Click ()
Unload Form5
End Sub
Sub Form_Load ()
Form5.Top = (Screen.Height - Form5.Height) / 2
Form5.Left = (Screen.Width - Form5.Width) / 2
BEdit1.Text = Form1.VenName.Text
BEdit2.Text = LTrim$(Form1.VenNo.Text)
BEdit3.Text = Form1.CalledIn.Text
BEdit4.Text = Form1.VenContact.Text
BEdit5.Text = Form1.OrderDate.Text
BEdit6.Text = Form1.EstDate.Text
End Sub